-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add local DMA unit #5
base: main
Are you sure you want to change the base?
Conversation
684ccf1
to
9401d64
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks pretty decent to me, left some comments and questions.
parameter int unsigned NarrowDataWidth = 0, | ||
/// Data Width for the Wide Ports | ||
parameter int unsigned WideDataWidth = 0, | ||
/// Latency of downstream memory for |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NIT: Might be a good idea to also add reasonable defaults here
/// Data Width for the Wide Ports | ||
parameter int unsigned WideDataWidth = 0, | ||
/// Latency of downstream memory for | ||
parameter int unsigned MemoryLatency = 2, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What does this parameter do? Is is functionally relevant?
for (genvar i = 0; i < 2; i++) begin : gen_rready_convert | ||
spill_register #( | ||
.T (obi_a_chan_t ), | ||
.Bypass ( '0 ) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Are these bypasses always necessary? Seems to me they are mostly relevant for timing.
Might be a good idea to extract their existence as a parameter.
.NumRegs (32'd1), | ||
.NumStreams (32'd1), | ||
.IdCounterWidth(32), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is this config reasonable?
No description provided.